[Selectors]
● matchLabels
The volume must have a label with this value.
● matchExpressions
A list of requirements made by specifying key, list of values, and operator that relates the key and values.
Valid operators include In, NotIn, Exists, and DoesNotExist.

# EXAMPLE 1 :-
apiVersion: v1
kind: ReplicationController
metadata:
  name: REPLICATIONCONTROLLER_NAME
spec:
  replicas: NO
  selector:
    KEY: VALUE
    KEY: VALUE
........
........
........

# EXAMPLE 2 :-
apiVersion: apps/v1
kind: ReplicaSet
metadata:
  name: REPLICASET_NAME
spec:
  replicas: NO
  selector:
    matchLabels:                                                # This option was added
      KEY: VALUE
      KEY: VALUE
........
........
........

# EXAMPLE 3 :-
apiVersion: apps/v1
kind: ReplicaSet
metadata:
  name: REPLICASET_NAME
spec:
  replicas: NO
  selector:
    matchExpressions:
      - {key: KEY_NAME, operator: In, values: [VALUE_NAME, VALUE_NAME]}
      - {key: KEY_NAME, operator: NotIn, values: [VALUE_NAME, VALUE_NAME]}
........
........
........
